home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / nrpas13.zip / BICO.PAS < prev    next >
Pascal/Delphi Source File  |  1991-04-29  |  106b  |  5 lines

  1. FUNCTION bico(n,k: integer): real;
  2. BEGIN
  3.    bico := round(exp(factln(n)-factln(k)-factln(n-k)));
  4. END;
  5.